home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
PROGRAMM
/
DB_CLIPP
/
1517.ZIP
/
DB4LESS3.ZIP
/
JOB.FMT
< prev
next >
Wrap
Text File
|
1988-11-17
|
2KB
|
63 lines
********************************************************************************
*-- Name....: JOB.FMT
*-- Date....: 11-17-88
*-- Version.: dBASE IV, Format 1.0
*-- Notes...: Format files use "" as delimiters!
********************************************************************************
*-- Format file initialization code --------------------------------------------
IF SET("TALK")="ON"
SET TALK OFF
lc_talk="ON"
ELSE
lc_talk="OFF"
ENDIF
*-- This form was created in COLOR mode
SET DISPLAY TO COLOR
lc_status=SET("STATUS")
*-- SET STATUS was ON when you went into the Forms Designer.
IF lc_status = "OFF"
SET STATUS ON
ENDIF
*-- @ SAY GETS Processing. -----------------------------------------------------
*-- Format Page: 1
@ 2,29 SAY "JOB INFORMATION FORM"
@ 4,13 TO 19,64
@ 6,18 SAY "Job ID"
@ 6,26 GET jobid PICTURE "@! AAA99"
@ 6,35 SAY "Start Date"
@ 6,47 GET startdate
@ 8,18 SAY "Description"
@ 8,31 GET jobdesc PICTURE "@S25 "
@ 10,18 SAY "Customer Code"
@ 10,33 GET custcode PICTURE "@! XXXXXXXXXX"
@ 13,18 SAY "Bid Price"
@ 13,28 GET bidprice PICTURE "9999999.99"
@ 15,18 SAY "Completed"
@ 15,28 GET completed PICTURE "Y"
@ 15,35 SAY "Completion Date"
@ 15,52 GET compdate
@ 17,18 SAY "Invoiced"
@ 17,28 GET invoiced PICTURE "Y"
*-- Format file exit code -----------------------------------------------------
*-- SET STATUS was ON when you went into the Forms Designer.
IF lc_status = "OFF" && Entered form with status off
SET STATUS OFF && Turn STATUS "OFF" on the way out
ENDIF
IF lc_talk="ON"
SET TALK ON
ENDIF
RELEASE lc_talk,lc_fields,lc_status
*-- EOP: JOB.FMT